home *** CD-ROM | disk | FTP | other *** search
- function checkLand()
- {
- dest_x = _root.chopper._x;
- var _loc1_ = dest_x - (_X + _parent._x);
- var _loc2_ = _root.chopper._y - (_Y + _parent._y);
- if(Math.abs(_loc1_) < 100 && Math.abs(_loc2_) < 5)
- {
- if(_loc1_ < 0)
- {
- move_looper.x_speed = -1;
- _xscale = 60;
- }
- else
- {
- move_looper.x_speed = 1;
- _xscale = -60;
- }
- gotoAndStop(2);
- move_looper.gotoAndPlay(2);
- }
- else
- {
- gotoAndStop(1);
- move_looper.x_speed = 0;
- move_looper.gotoAndStop(1);
- }
- }
- stop();
- n = Number(mbsubstring(_name,8,2));
-